home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsmd5.c < prev    next >
C/C++ Source or Header  |  2005-02-05  |  3KB  |  94 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: htsmd5.c subroutines:                                  */
  34. /*       generate a md5 hash                                    */
  35. /*                                                              */
  36. /* Written March 1993 by Branko Lankester                       */
  37. /* Modified June 1993 by Colin Plumb for altered md5.c.         */
  38. /* Modified October 1995 by Erik Troan for RPM                  */
  39. /* Modified 2000 by Xavier Roche for domd5mem                   */
  40. /* ------------------------------------------------------------ */
  41.  
  42. /* Internal engine bytecode */
  43. #define HTS_INTERNAL_BYTECODE
  44.  
  45. #include "htsmd5.h"
  46. #include "md5.h"
  47. #include <string.h>
  48. #include <stdio.h>
  49.  
  50. int domd5mem(unsigned char * buf, int len, 
  51.                     unsigned char * digest, int asAscii) {
  52.   int endian = 1;
  53.   unsigned char bindigest[16];
  54. #if 1
  55. //#ifndef _WIN32_WCE
  56.   MD5_CTX ctx;
  57.  
  58.   MD5Init(&ctx, * ( (char*) &endian));
  59.   MD5Update(&ctx, buf, len);
  60.   MD5Final(bindigest, &ctx);
  61. #else
  62.   /* Broken md5.. temporary hack */
  63.   int i;
  64.   memset(bindigest, 0, 16);
  65.   if (len > 0) {
  66.     for(i = 0 ; i < len + 16 ; i++) {
  67.       bindigest[i % 16] ^= ( buf[i % len] + i + len );
  68.       bindigest[(i - 1) % 16] ^= bindigest[ ( i + buf[i % len]*buf[(i-1) % len] ) % 16];
  69.     }
  70.   }
  71. #endif
  72.  
  73.   if (!asAscii) {
  74.     memcpy(digest, bindigest, 16);
  75.   } else {
  76.     sprintf(digest, "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x"
  77.       "%02x%02x%02x%02x%02x",
  78.       bindigest[0],  bindigest[1],  bindigest[2],  bindigest[3],
  79.       bindigest[4],  bindigest[5],  bindigest[6],  bindigest[7],
  80.       bindigest[8],  bindigest[9],  bindigest[10], bindigest[11],
  81.       bindigest[12], bindigest[13], bindigest[14], bindigest[15]);
  82.     
  83.   }
  84.   
  85.   return 0;
  86. }
  87.  
  88. unsigned long int md5sum32(char* buff) {
  89.   unsigned char md5digest[16];
  90.   unsigned char* md5digest_ = md5digest;
  91.   domd5mem(buff,strlen(buff),md5digest,0);
  92.   return *( (long int*)(char*)md5digest );
  93. }
  94.